* picture.el (move-to-column-force): If column is negative, go
authorJim Blandy <jimb@redhat.com>
Fri, 11 Jun 1993 10:11:33 +0000 (10:11 +0000)
committerJim Blandy <jimb@redhat.com>
Fri, 11 Jun 1993 10:11:33 +0000 (10:11 +0000)
flush left.

lisp/textmodes/picture.el

index 7c0490b6d2e9155f47638fdb32e9fca86399cec2..b8a1ec0c5c2438d7f73ae50f9509014b690b5e92 100644 (file)
@@ -34,6 +34,7 @@
   "Move to column COLUMN in current line.
 Differs from `move-to-column' in that it creates or modifies whitespace
 if necessary to attain exactly the specified column."
+  (or (natnump column) (setq column 0))
   (move-to-column column)
   (let ((col (current-column)))
     (if (< col column)